1.2.6.1. alpha.osx.cocoa.DirectIvarAssignment (ObjC)
Check for direct assignments to instance variables.

Examples:

@interface MyClass : NSObject {}
@property (readonly) id A;
- (void) foo;
@end

@implementation MyClass
- (void) foo {
  _A = 0; // warn
}
@end